home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 008a / fglqbx10.zip / 03-06.BAS < prev    next >
BASIC Source File  |  1991-06-05  |  266b  |  20 lines

  1. REM $INCLUDE: 'fastgraf.bi'
  2.  
  3. DEFINT A-Z
  4.  
  5. OldMode = FGgetmode
  6. NewMode = FGautomode
  7. FGsetmode NewMode
  8.  
  9. FGsetcolor 15
  10. FGtext "I'm running in mode", 19
  11. FGtext STR$(NewMode), LEN(STR$(NewMode))
  12. FGtext ".", 1
  13.  
  14. FGwaitkey
  15.  
  16. FGsetmode OldMode
  17. FGreset
  18.  
  19. END
  20.